home *** CD-ROM | disk | FTP | other *** search
- /* ====================================== */
- /* Final Writer Arexx Macro - OBJECT COPY */
- /* This macro will duplicate any selected */
- /* graphic objects. */
- /* by Terry Wright */
- /* $VER: GfxDuplicate 3.0 (21.7.93) */
- /* ====================================== */
- Options Results
-
- /* ------------------------------------------------ */
- /* First find out if there are any objects selected */
- /* ------------------------------------------------ */
- CurrentObject
- objectId = Result
- IF (objectId = 0) THEN
- EXIT
-
- /* ---------------------------------------------- */
- /* Make sure the grapich tool is the current tool */
- /* before we do the Copy and Paste commands. */
- /* ---------------------------------------------- */
- GraphicTool
- Copy
- IF ( RC = 0 ) THEN
- Paste
-